home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap10 / b10d020.cc2 < prev   
Text File  |  1998-06-07  |  2KB  |  39 lines

  1. 0, Your assignment in Lab 10 is to create 
  2. 3, an enhanced front end for the Biblio.mdb 
  3. 6, database that includes Find, Add, and 
  4. 10, Delete capabilities. Your solution should 
  5. 12, look like the program I'm running now. 
  6. 15, Like the previous demonstration, you 
  7. 17, should be able to use the data object to 
  8. 19, explore the database. In addition, you 
  9. 25, should be able to use the Find, Add, and 
  10. 29, Delete buttons to modify the database. The 
  11. 33, Find button lets you can search the 
  12. 34, database for a matching book title. If your 
  13. 37, search for the database title exists, 
  14. 40, the program should locate it and display 
  15. 42, it. When I click the Find button, I have 
  16. 45, a Search dialog box. And if I type Using 
  17. 48, SQL, a book I know is in the database, 
  18. 53, and click OK, it appears in the database 
  19. 56, window. The Add button lets you add a 
  20. 60, new database record. When I click the 
  21. 64, button, I receive a dialog box with 
  22. 65, instructions. When I click OK, I get a chance 
  23. 69, to enter my new record. I'll type the 
  24. 71, fictitious book, The New Joy of Databases, 
  25. 78, which is a 6 x 9 title, 500 pages, has 
  26. 84, an ISBN of 155615-275x, and was published 
  27. 97, in 1997. So, when I click the left 
  28. 103, arrow, it adds it to the database in 
  29. 105, alphabetical order. If I go ahead and search 
  30. 110, for that record to verify that it's there, 
  31. 118, the program displays it in the window. 
  32. 122, Finally, I should verify that my Delete 
  33. 123, button works okay. When I click the 
  34. 125, Delete button, I see "Delete record. Do you 
  35. 128, really want to delete this record?", a 
  36. 130, good safety check. When I click OK, that 
  37. 133, record is deleted from the database. 
  38. 136, Best of luck.
  39. 138, END